runtime.mSpanList.first (field)

23 uses

	runtime (current package)
		mgcwork.go#L364: 		if work.wbufSpans.free.first != nil {
		mgcwork.go#L366: 			s = work.wbufSpans.free.first
		mgcwork.go#L472: 			span := work.wbufSpans.free.first
		mheap.go#L376: 	first *mspan // first span in list, or nil if none
		mheap.go#L1580: 	list.first = nil
		mheap.go#L1590: 	if list.first == span {
		mheap.go#L1591: 		list.first = span.next
		mheap.go#L1606: 	return list.first == nil
		mheap.go#L1614: 	span.next = list.first
		mheap.go#L1615: 	if list.first != nil {
		mheap.go#L1618: 		list.first.prev = span
		mheap.go#L1623: 	list.first = span
		mheap.go#L1638: 		list.first = span
		mheap.go#L1652: 	for s := other.first; s != nil; s = s.next {
		mheap.go#L1661: 		other.last.next = list.first
		mheap.go#L1662: 		list.first.prev = other.last
		mheap.go#L1663: 		list.first = other.first
		mheap.go#L1666: 	other.first, other.last = nil, nil
		stack.go#L201: 	s := list.first
		stack.go#L405: 			s = stackLarge.free[log2npage].first
		stack.go#L1221: 		for s := list.first; s != nil; {
		stack.go#L1237: 		for s := stackLarge.free[i].first; s != nil; {